From: Andrew Cooper Date: Tue, 6 Aug 2013 13:48:40 +0000 (+0100) Subject: rombios/debug: Reduce verbosity of rombios X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6552 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=1242b63dd1a4321acd2b02051f210a3488265709;p=xen.git rombios/debug: Reduce verbosity of rombios Default builds of Qemu have the Bochs debug port logging #ifdef'd out, so remove all the completely wasted VMExits Signed-off-by: Andrew Cooper Acked-by: Keir Fraser --- diff --git a/tools/firmware/rombios/rombios.h b/tools/firmware/rombios/rombios.h index 93d12a489f..0308a18f29 100644 --- a/tools/firmware/rombios/rombios.h +++ b/tools/firmware/rombios/rombios.h @@ -48,10 +48,11 @@ // per-device basis. Debug info are sent only in debug mode #if DEBUG_ROMBIOS # define BX_DEBUG(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p) +# define BX_INFO(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p) #else # define BX_DEBUG(format, p...) +# define BX_INFO(format, p...) #endif -#define BX_INFO(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p) #define BX_PANIC(format, p...) bios_printf(BIOS_PRINTF_DEBHALT, format, ##p) #define ACPI_DATA_SIZE 0x00010000L